0358f846f5dacf58fbb33c9f2d910326c1280fce,web/src/main/java/org/jboss/qa/perfrepo/web/controller/reports/testgroup/TestGroupReportController.java,TestGroupReportController,saveReport,#String#,319
Before Change
for (String test : tests) {
testsProperty += test + ", ";
}
ReportUtils.createOrUpdateReportPropertyInMap(properties, "tests",
testsProperty.substring(0, testsProperty.length() - 2), report);
//tags
int i = 1;
After Change
for (String test : tests) {
testsProperty += test + ", ";
}
if (testsProperty.length() > 0) {
ReportUtils.createOrUpdateReportPropertyInMap(properties, "tests",
testsProperty.substring(0, testsProperty.length() - 2), report);
}
//tags